home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #14 / Monster Media No. 14 (April 1996) (Monster Media, Inc.).ISO / prog_bas / pclvbw10.zip / LOGGLOB.BAS < prev    next >
BASIC Source File  |  1996-02-09  |  739b  |  31 lines

  1. ' Global Variables
  2. Option Explicit
  3. Global ThePort As Integer
  4. Global TheBaudCode As Integer
  5. Global TheDataBits As Integer
  6. Global TheParity As Integer
  7. Global TheStopBits As Integer
  8. Global BaudText(0 To 9) As String
  9. Global ParityText(0 To 7) As String
  10. Global OnLineFlag As Integer
  11. Global RxSelector As Integer
  12. Global TxSelector As Integer
  13. Global LockCount As Integer
  14. Global FatalFlag As Integer
  15. Global ScreenBuffer(0 To 23) As String * 80
  16. Global CurrentRow As Integer
  17. Global CurrentCol As Integer
  18. Global MIOstate As Integer
  19. 'Global Constants
  20. Global Const Handshake_1 = 11
  21. Global Const Handshake_2 = 12
  22. Global Const Handshake_3 = 13
  23. Global Const Dial_1 = 21
  24. Global Const Dial_2 = 22
  25. Global Const Dial_3 = 23
  26.  
  27.  
  28.  
  29.  
  30.  
  31.